home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / kcl / akcl / akcl1615.lha / xbin / append next >
Text File  |  1989-05-08  |  75b  |  6 lines

  1. #!/bin/sh
  2. if [ "$#" = "3" ] ;then
  3. cat $1 $2 >> $3 ;
  4. else cat $1 >> $2 ;
  5. fi
  6.